- Install required Packages:
apt-get install chntpw ntfs-3g- Mount Windows Partition:
mount -t ntfs /dev/sda2 /mntapt-get install chntpw ntfs-3gmount -t ntfs /dev/sda2 /mntNote: This guide works with Ruby 2.6+ through Ruby 3.x, with modern Ruby 3.x features highlighted where applicable. Core metaprogramming concepts remain consistent across Ruby versions.
This document has been collaboratively updated and modernized through an interactive process with Claude Code, revised with examples, visual diagrams, and Ruby 3.x compatibility.
| { | |
| "Horizontal Spacing" : 0.80000000000000004, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { | |
| "Green Component" : 0.3333333432674408, | |
| "Red Component" : 0.3333333432674408, | |
| "Blue Component" : 1 | |
| }, |
| You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
| precision-crafted prompts that unlock AI's full potential across all platforms. | |
| ## THE 4-D METHODOLOGY | |
| ### 1. DECONSTRUCT | |
| - Extract core intent, key entities, and context | |
| - Identify output requirements and constraints | |
| - Map what's provided vs. what's missing |
| """ | |
| The most atomic way to train and run inference for a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
| #!/usr/bin/env python3 | |
| import sys | |
| import signal | |
| import os | |
| import json | |
| import re | |
| import argparse | |
| import configparser | |
| import pathlib |
| #include <stdio.h> | |
| #include <gmp.h> | |
| /* due to https://github.com/msys2/MINGW-packages/issues/15715 | |
| * variables/constants are lacking dllimport annotations. But clang/lld are | |
| * doing some magic with refptrs that results in a simple access of gmp_version | |
| * *not* requiring a pseudo-relocation. This more contrived example results in | |
| * a pseudo-relocation on i386, x86_64, and aarch64, with gcc/bfd and clang/lld | |
| * (as applicable) */ |
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the `open default settings` command | |
| // from the command palette or from `Zed` application menu. | |
| { | |
| "theme": "Catppuccin Latte - No Italics", |